home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl151s.zip / INCLUDE / HASH.P < prev    next >
Text File  |  1995-03-18  |  333b  |  10 lines

  1.  
  2. /* Protogen Version 1.05 Saturday March 18, 1995  13:08:38 */
  3.  
  4.                                /* Hash.c */
  5.  
  6. HASHREC *AddHash(HASHREC **table, HASHREC *item, char *key, int size);
  7. HASHREC **LookupHash(HASHREC **table, char *key, int size);
  8. HASHREC **CreateHashTable(int size);
  9. void DumpHashTable(HASHREC **t, char *string);
  10.